01. Intro
Intro
Expected Knowledge
- creating repositories with
git init
andgit clone
- reviewing repos with
git status
- using
git log
andgit show
to review past commits - being able to make commits with
git add
- commit them to the repo with
git commit
- you need to know about branching, merging branches together, and resolving merge conflicts
- and being able to undo things in Git:
git commit --amend
to undo the most recent commit or to change the wording of the commit message- and
git reset
If you're comfortable with all of these, then you'll be good to go for this course.
If you're new to Version control or Git, check out the Version Control with Git course.